home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 93 / CDMM_93_2.ISO / Project Nomads / nomads_demo_eng.exe / NPC.TCL < prev    next >
Encoding:
Text File  |  2001-12-15  |  821 b   |  24 lines

  1. #-------------------------------------------------------------------------------
  2. #
  3. #   Statewatcher script for npc's.
  4. #
  5. #   (C) 2001 RadonLabs GmbH
  6. #
  7. #-------------------------------------------------------------------------------
  8.  
  9. #-------------------------------------------------------------------------------
  10. #   normal (only here as a dummy)
  11. #-------------------------------------------------------------------------------
  12. proc npcwatch_normal {} {
  13. }
  14.  
  15. #-------------------------------------------------------------------------------
  16. #   cinematic (this is where the real work is done)
  17. #-------------------------------------------------------------------------------
  18. proc npcwatch_cinematic {} {
  19.     if {[.iscinematicfinished] == "true"} {
  20.         # FLOH: removed obsolete event stuff
  21.     }
  22. }
  23.  
  24.